home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / sharew / dfue / fax / fddk / minidemo.c < prev    next >
C/C++ Source or Header  |  1992-01-30  |  398b  |  22 lines

  1. #include "qfaxdrv.h"
  2.  
  3. int        main(void)
  4. {
  5.     if(qfax_init())
  6.         return(-1);
  7.  
  8.     /*qfax_clr();*/
  9.  
  10.     if(qfax_open("ascii"))
  11.         return(-1);
  12.     qfax_text("");
  13.     qfax_text("");
  14.     qfax_text("Hello FaxWorld");
  15.     qfax_text("");
  16.     qfax_text("Dieses Fax wurde mit dem Fax-Developer-Kit erzeugt.");
  17.     qfax_text("Mit weniger als 400 Byte in C !");
  18.     qfax_text("");
  19.     qfax_text("");
  20.  
  21.     return(qfax_close());
  22. }